home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / csinst.zip / install.dat < prev    next >
Text File  |  1996-05-22  |  6KB  |  93 lines

  1. /*--------------(Set default destination directory)-------------*/
  2. DESTINATION=DEVTOOLS\GREED  /* Pathname without drive character */
  3.  
  4. /*---------------(Search for previous installation)-------------*/
  5. WPS_ONLY_IF_EXIST=GREED.EXE
  6.  
  7. /*-----(Your welcome message. Set no comment in those lines)----*/
  8. /* Note: Use '\n' (like C) in the message line for Line Feed    */
  9. /*--------------------------------------------------------------*/
  10. WELCOME_BUTTON=OKCANCEL                /* OKCANCEL, OK or Blank */
  11. WELCOME_TITLE=Hi Girls and Guys!
  12. WELCOME=Welcome to the Installation of "GREED"\nVersion 2.0 Beta.\n\n
  13. WELCOME=Click OK to continue or CANCEL to exit\n\n
  14. WELCOME=Sincerely yours Janosch\n\n
  15.  
  16. /*-------(Rexx procedures. Set no comment in those lines)----------*/
  17. /* Note: Your REXX programs, if used, must exist in the            */
  18. /*       installation(source) directory. You can only use constant */
  19. /*       values as calling parameters or the following keywords:   */
  20. /*       - dest_path (for the destination directory)               */
  21. /*       - homeDir   (for the installation(source) directory)      */
  22. /*       It is not necessary  to enter the File Extention (.CMD).  */
  23. /*       Please do not use the output to / input from the Stdio.   */
  24. /*       i.e.: Call for MYREXX.CMD with the parameter 'A:'         */
  25. /*             after successfully installation:                    */
  26. /*             START_REXX_BY_SUCCESSFUL=MYREXX 'A:'                */
  27. /*-----------------------------------------------------------------*/
  28. START_REXX_BY_OPEN_WINDOW  = 
  29. START_REXX_BY_START_INSTALL= savepre dest_path
  30. START_REXX_BY_SUCCESSFUL   = delsaves dest_path
  31. START_REXX_IF_FAILURE      = restorep dest_path
  32. START_REXX_BY_CLOSE_WINDOW =
  33. /*---------------------(End Rexx procedures)--------------------*/
  34.  
  35. /*----------------------(start WPS objects)---------------------*/
  36. /* Note: "dest_path" is a keyword for the destination directory */
  37. /*       - please use it as is.                                 */
  38. /*       For syntax of those lines see REXXUtil SysCreateObject.*/
  39. /*--------------------------------------------------------------*/
  40. ("WPFolder","General Rexx Extended Editor"'0d0a'x"Version 2.0 Beta", "<WP_DESKTOP>", "OBJECTID=<GREED_FOLDER>;ICONFILE="dest_path"\GREED.ICO", "r")
  41. ("WPProgram","Greed", "<GREED_FOLDER>","TEMPLATE=NO;EXENAME="||dest_path"\GREED.EXE;STARTUPDIR="||dest_path,"r")
  42. ("WPProgram","Greed Extents", "<GREED_FOLDER>","TEMPLATE=NO;EXENAME="||dest_path"\GREEDX.EXE;STARTUPDIR="||dest_path,"r")
  43. ("WPProgram","Greed Information","<GREED_FOLDER>","EXENAME=VIEW.EXE;PARAMETERS="||dest_path"\GREED.INF;STARTUPDIR="dest_path,"r")
  44. ("WPProgram","Greed Extents"||'0d0a'x"Information","<GREED_FOLDER>","EXENAME=VIEW.EXE;PARAMETERS="||dest_path"\GREEDX.INF;STARTUPDIR="dest_path,"r")
  45. ("WPProgram","Template Editor","<GREED_FOLDER>","TEMPLATE=NO;EXENAME="dest_path"\TemplEd.EXE;STARTUPDIR="dest_path";ASSOCFILTER=*.FNC,,","r")
  46. ("WPProgram","FTP Editor","<GREED_FOLDER>","TEMPLATE=NO;EXENAME="dest_path"\FTPDEF.EXE;STARTUPDIR="dest_path";ASSOCFILTER=*.FTP,,","r")
  47. ("WPProgram","File Browser","<GREED_FOLDER>","TEMPLATE=NO;EXENAME="dest_path"\PMBROWSE.EXE;STARTUPDIR="dest_path,"r")
  48. ("WPShadow","REXX Information","<GREED_FOLDER>","SHADOWID=<WP_REXREF>;OBJECTID=<GREED_REXREF>","r")
  49. /*----------------------(end WPS objects)-----------------------*/
  50.  
  51. /*--------------------(Update informations)----------------------*/
  52. /* Note: Here you can enter  the names of files to delete if you */
  53. /*       use this procedure for update a previous installation.  */
  54. /*       It is useful for delete files you do not need  any more */
  55. /*       for the new release.  (PS : See Diectory Info below )   */
  56. /*       This files are deleted before you start the installation*/
  57. /*       (after you are pressed the push Button Install)         */ 
  58. /*       You can use this keyword as frequently as you need.     */
  59. /*       i.e.: DELETE_FILE=MYAPPL16.EXE                          */
  60. /*---------------------------------------------------------------*/
  61. DELETE_FILE=FunWrite.EXE
  62. DELETE_FILE=FunWrite.ICO
  63. DELETE_FILE=
  64. /* ... more deletes ... */
  65. /*----------------------( Directory Information )----------------*/
  66. /* Note: Here are entries for the Directories to be deleted      */
  67. /* before installing the new instance of of the installtion.     */
  68. /* These are directories that you no longer require ( or want )  */
  69. /* to appear in the new installation into the existing Directory.*/
  70. /*---------------------------------------------------------------*/
  71. REMOVE_DIR=
  72. REMOVE_DIR=
  73. REMOVE_DIR=
  74. /* ... more removes ... */
  75. /*-------------------(End update informations)-------------------*/
  76.  
  77. /*----------------(Post-installation processing)-----------------*/
  78. /* After successfully installation you can delete files and      */
  79. /* directories which you not need after the installation such as */
  80. /* Log files, Rexx-exits or backup directory                     */
  81. /* You can use this keywords as frequently as you need.          */
  82. /* Note: only empty directories will be deleted                  */
  83. /*---------------------------------------------------------------*/
  84. DELETE_FILE_AFTER_INSTALLATION=INSTALL.LOG
  85. DELETE_FILE_AFTER_INSTALLATION=
  86. DELETE_FILE_AFTER_INSTALLATION=
  87. /* ... more ... */
  88.  
  89. REMOVE_DIR_AFTER_INSTALLATION=SAVEPRE
  90. REMOVE_DIR_AFTER_INSTALLATION=
  91. /* ... more ... */
  92. /*--------------(End post-installation processing)---------------*/
  93.